Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

69
Views
The given data was invalid "Requested quantity is not available.", NextJS and Commerce JS

Hi guys i'm creating an e-commerce with CommerceJs and NextJS when handling payment i get this error

message: "The given data was invalid." type: "unprocessable_entity" line_items.item_7RyWOwmK5nEa2V.quantity: ["Requested quantity is not available."]

i tried to change my code like the docs but no luck

const orderData = {
    line_items: {
      item_7RyWOwmK5nEa2V: {
        quantity: 1,
      }
    },
    customer: {
      firstname: 'John',
      lastname: 'Doe',
      email: 'john.doe@example.com'
    },
    shipping: {
      name: 'John Doe',
      street: '123 Fake St',
      town_city: 'San Francisco',
      county_state: 'US-CA',
      postal_zip_code: '94103',
      country: 'US'
    },
    fulfillment: {
      shipping_method: 'ship_7RyWOwmK5nEa2V'
    },
    billing: {
      name: 'John Doe',
      street: '234 Fake St',
      town_city: 'San Francisco',
      county_state: 'US-CA',
      postal_zip_code: '94103',
      country: 'US'
    },
    payment: {
      gateway: 'stripe',
      stripe: {
        payment_method_id: paymentMethod.id,
      },
    }
  }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You must go into your commerce.js dashboard and edit the available quantity of your product there. You will see it under dashboard > products > productName > inventoryAvailable. Be sure to also check if you have variants, that the selected variant has an available inventory to draw from as well...

You can use this code to test if your product inventory is available...

commerce.checkout.checkQuantity("your-checkout-token", 'item-id', {
    amount: 1,
    variant_id: 'your-variant-id-OPTIONAL'
}).then((response) => console.log(response.available));
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!